home *** CD-ROM | disk | FTP | other *** search
/ World of Education / World of Education.iso / world_x / xcoral16.zip / GLOBAL_P.H < prev    next >
C/C++ Source or Header  |  1993-01-15  |  794b  |  35 lines

  1. /*
  2. ** Copyright 1989, 1992 by Lionel Fournigault
  3. **
  4. ** Permission to use, copy, and distribute for non-commercial purposes,
  5. ** is hereby granted without fee, providing that the above copyright
  6. ** notice appear in all copies and that both the copyright notice and this
  7. ** permission notice appear in supporting documentation.
  8. ** The software may be modified for your own purposes, but modified versions
  9. ** may not be distributed.
  10. ** This software is provided "as is" without any expressed or implied warranty.
  11. **
  12. **
  13. */
  14.  
  15. #ifndef GLOBALPARSE_H
  16. #define GLOBALPARSE_H
  17.  
  18.  
  19. typedef struct {
  20.   char  text[256];
  21.   int   precedence;
  22.   int   position;
  23.   int   is_virtual;
  24. } lex_info_type;
  25.  
  26. #define YYSTYPE lex_info_type
  27.  
  28.  
  29. extern char yy_class_name[];
  30.  
  31. extern int line_count;
  32.  
  33.  
  34. #endif  /*  GLOBALPARSE_H  */
  35.